home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Drivin' Route 66
/
Drivin' Route 66 (1995)(Creative Multimedia)[Mac-PC].iso
/
pc
/
shared.dir
/
00999_Script_Low utils
< prev
next >
Wrap
Text File
|
1995-10-02
|
946b
|
50 lines
--⌐ 1995, Cambridge Digital Media, Inc.
on lowLevInit -- Things that should always be called on startMovie.
set the centerstage to true
set the visible of sprite 47 to false
set the visible of sprite 48 to false
if the colordepth <> 8 then
set the colordepth to 8
end if
end
on fixPicons
if the movieName = ".DIR" then
repeat with s = 35 to 37
puppetSprite s,0
set the castNum of sprite s to the number of cast (line s-34 of field "fixPic")
updateStage
end repeat
fixmapPicons
end if
end
on noSprites
repeat with p = 1 to 48
puppetSprite p,0
end repeat
updateStage
end
on busyCursor
cursor 4
put the ticks+5 into future
repeat while the ticks < future
nothing
end repeat
end
on doDelay
cursor 4
put the ticks+10 into future
repeat while the ticks < future
nothing
end repeat
end
on idle
cursor -1
end